body {
    background-color: aliceblue;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6em;
}

.container {
    display: flex;
    background-color: rgb(246, 249, 211);
}

.name {
    margin-top: 20px;
    line-height: 25px;
    margin-bottom: 20px;
}

#myTextarea {
    padding: 5px;
    float: right;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    border-color: rgb(215, 10, 157);
    background-color: rgb(243, 227, 239);

}

#myTextarea2 {
    padding: 5px;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-top: 10px;
    margin-right: 10px;
    border-color: brown;
    background-color: rgba(153, 249, 182, 0.521);
    float: left;
}

.col {
    float: left;
    width: 40%;
}

.col2 {
    width: 40%;
    float: right;

}

.mng {
    margin-top: 10px;
    float: right;
    margin-right: 10%;
    color: blue;
    font-size: 18px;
}

.eng {
    margin-top: 10px;
    float: left;
    margin-left: 10%;
    color: blue;
    font-size: 18px;
}

.btn {
    margin: auto 5%;

}

#button {
    background: none;
    color: #9f0404;
    width: 240px;
    height: 80px;
    border: 1px solid#338033;
    font-size: 18px;
    border-radius: 4px;
    transition: .6s;
    overflow: hidden;
}

#button :focus {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100px;
    top: 0;
    top: 0;
    opacity: .5s;
    filter: blue(30px);
    transform: translateX(-130px) skewX(-15deg);

}

#button :after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(48, 2, 2, 0.2);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(30px);
    transform: translateX(-100px) scaleX(-15deg);
}

#button:hover {
    background: #338033;
    cursor: pointer;
}

#button :after {
    content: "";
    display: block;
}

#button:hover:before {
    transform: translateX(300px) skewX(-15deg);
    opacity: .6;
    transition: .7s;
}

#button:hover:after {
    transform: translateX(300px) skewX(-15deg);
    opacity: 1;
    transition: .7s;
}

#navbar {
    background: #333;
    color: white;
    overflow: auto;
}

#navbar a {
    color: white;
}

#navbar h1 {
    float: left;
    font-family: Georgia, Times, 'Times New Roman', serif;
}

#navbar ul {
    list-style: none;
    float: right;
    font-size: auto;
    font-style: inherit;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #444;
    color: #f7c08a;
}

.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}

a {
    color: #333;
    text-decoration: none;
}

.Copyright {
    background: #434242;
    width: auto;
    text-align: center;
    padding: 5px;
    color: #f4f4f4;
}